projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6f7982
)
*** empty log message ***
author
Roland McGrath
<roland@gnu.org>
Tue, 8 Feb 1994 22:46:59 +0000
(22:46 +0000)
committer
Roland McGrath
<roland@gnu.org>
Tue, 8 Feb 1994 22:46:59 +0000
(22:46 +0000)
lwlib/lwlib.c
patch
|
blob
|
history
diff --git
a/lwlib/lwlib.c
b/lwlib/lwlib.c
index 2f1e93ec3433d14c4a58d0886a8f889cc4824350..e6af711e6977a8b5b47858071ca199e8e3d34e35 100644
(file)
--- a/
lwlib/lwlib.c
+++ b/
lwlib/lwlib.c
@@
-86,7
+86,7
@@
safe_strdup (s)
/* Like strcmp but ignore differences in case. */
static int
-strcasecmp (s1, s2)
+
my_
strcasecmp (s1, s2)
char *s1, *s2;
{
while (1)
@@
-671,7
+671,7
@@
find_in_table (type, table)
{
widget_creation_entry* cur;
for (cur = table; cur->type; cur++)
- if (!strcasecmp (type, cur->type))
+ if (!
my_
strcasecmp (type, cur->type))
return cur->function;
return NULL;
}